Created: 2022-08-19
Tags: #fleeting
LETTERS or DIGITS or _LETTER
__ since library routines often use such names.hello is different from HELLOUPPER for symbolic constants, lower for variablesAt least the first 31 characters of an internal name are significant.
For function names and external variables, the number may be less than 31,
because external names may be used by assemblers and loaders over which the language has no control.
For external names, the standard guarantees uniqueness only for 6 characters and a single case. Keywords like if, else, int, float, etc., are reserved: you can't use them as variable names.